From f9d2caa8683695eabb5d905c4b11e107408e7d86 Mon Sep 17 00:00:00 2001 From: Jan Arne Petersen Date: Sat, 24 May 2008 19:03:33 +0000 Subject: [PATCH] Change defaults of child properties "expand" and "homogeneous" from TRUE 2008-05-24 Jan Arne Petersen * gtk/gtktoolbar.c: (gtk_toolbar_class_init): Change defaults of child properties "expand" and "homogeneous" from TRUE to FALSE (as they are used in GtkToolItem) (#532787). svn path=/trunk/; revision=20139 --- ChangeLog | 8 +++++++- gtk/gtktoolbar.c | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 59ee0a90aa..e434dab7bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,14 @@ +2008-05-24 Jan Arne Petersen + + * gtk/gtktoolbar.c: (gtk_toolbar_class_init): Change defaults of child + properties "expand" and "homogeneous" from TRUE to FALSE (as they are + used in GtkToolItem) (#532787). + 2008-05-24 Jan Arne Petersen * gtk/gtkfilechooserdefault.c: (location_toggle_popup_handler): Don't try to toggle the visibility of the location entry field in search and - recent mode (#526422) + recent mode (#526422). 2008-05-24 Jan Arne Petersen diff --git a/gtk/gtktoolbar.c b/gtk/gtktoolbar.c index a9ab48a940..6019d36cd3 100644 --- a/gtk/gtktoolbar.c +++ b/gtk/gtktoolbar.c @@ -573,7 +573,7 @@ gtk_toolbar_class_init (GtkToolbarClass *klass) g_param_spec_boolean ("expand", P_("Expand"), P_("Whether the item should receive extra space when the toolbar grows"), - TRUE, + FALSE, GTK_PARAM_READWRITE)); gtk_container_class_install_child_property (container_class, @@ -581,7 +581,7 @@ gtk_toolbar_class_init (GtkToolbarClass *klass) g_param_spec_boolean ("homogeneous", P_("Homogeneous"), P_("Whether the item should be the same size as other homogeneous items"), - TRUE, + FALSE, GTK_PARAM_READWRITE)); /* style properties */ -- 2.30.2